home *** CD-ROM | disk | FTP | other *** search
/ Internet Surfer: Getting Started / Internet Surfer - Getting Started (Wayzata Technology)(7231)(1995).bin / pc / textfile / mac_faqs / perl_faq / part1 < prev    next >
Internet Message Format  |  1995-01-30  |  39KB

  1. Xref: bloom-picayune.mit.edu news.answers:4267 comp.lang.perl:14078
  2. Newsgroups: news.answers,comp.lang.perl
  3. Path: bloom-picayune.mit.edu!enterpoop.mit.edu!usc!cs.utexas.edu!wupost!news.utdallas.edu!convex!tchrist
  4. From: Tom Christiansen <tchrist@convex.COM>
  5. Subject: comp.lang.perl FAQ (part 1 of 2)
  6. Originator: tchrist@pixel.convex.com
  7. Sender: usenet@news.eng.convex.com (news access account)
  8. Message-ID: <1992Nov30.125050.8928@news.eng.convex.com>
  9. Approved: news-answers-request@MIT.Edu
  10. Date: Mon, 30 Nov 1992 12:50:50 GMT
  11. Reply-To: tchrist@convex.COM (Tom Christiansen)
  12. References: <1992Nov30.124619.8579@news.eng.convex.com>
  13. Nntp-Posting-Host: pixel.convex.com
  14. Organization: Convex Computer Corporation, Colorado Springs, CO
  15. Followup-To: comp.lang.perl
  16. X-Disclaimer: This message was written by a user at CONVEX Computer
  17.               Corp. The opinions expressed are those of the user and
  18.               not necessarily those of CONVEX.
  19. Lines: 860
  20.  
  21. Archive-name: perl-faq/part1
  22. Version: $Id: perl-info,v 1.2 92/11/30 05:22:33 tchrist Exp Locker: tchrist $
  23.  
  24. This posting contains answers to general information questions,
  25. mostly of a non-technical nature.  The following questions are 
  26. answered:
  27.  
  28. 1.1) What is Perl?
  29. 1.2) Is Perl hard to learn?
  30. 1.3) Should I program everything in Perl?
  31. 1.4) Where can I get Perl over the Internet?
  32. 1.5) Where can I get Perl via Email?
  33. 1.6) How can I get Perl via UUCP?
  34. 1.7) Where can I get more information on Perl?
  35. 1.8) Can people who aren't on USENET receive comp.lang.perl as a digest?
  36. 1.9) Are archives of comp.lang.perl available?
  37. 1.10) How do I get Perl to run on machine FOO?
  38. 1.11) Where can I get (info|inter|ora|sql|syb)perl?
  39. 1.12) There's an a2p and an s2p; why isn't there a p2c (perl-to-C)?
  40. 1.13) Where can I get undump for my machine?
  41. 1.14) Where can I get a perl-mode for emacs?
  42. 1.15) How can I use Perl interactively?
  43. 1.16) Is there a Perl shell? 
  44. 1.17) Is there a Perl profiler?
  45. 1.18) Is there a yacc for Perl?
  46. 1.19) How can I use curses with perl?
  47. 1.20) How can I use X with Perl?
  48. 1.21) What is perl4?  What is perl5?
  49. 1.22) How does Perl compare with languages like REXX or TCL?
  50. 1.23) Is it a Perl program or a Perl script?
  51. 1.24) What's the difference between "Perl" and "perl"?
  52. 1.25) What companies use or ship Perl?
  53. 1.26) Is there commercial, 3rd-party support for Perl?
  54. 1.27) Where can I get a list of the JAPH signature quotes?
  55. 1.28) Where can I get a list of Larry Wall witticisms?
  56. 1.29) Is there a pretty-printer for Perl?
  57.  
  58.  
  59. 1.1) What is Perl?
  60.  
  61.     A programming language, by Larry Wall <lwall@netlabs.com>.
  62.  
  63.     Here's the beginning of the description from the man page:
  64.  
  65.     Perl is an interpreted language optimized for scanning arbitrary text
  66.     files, extracting information from those text files, and printing reports
  67.     based on that information.  It's also a good language for many system
  68.     management tasks.  The language is intended to be practical (easy to use,
  69.     efficient, complete) rather than beautiful (tiny, elegant, minimal).  It
  70.     combines (in the author's opinion, anyway) some of the best features of C,
  71.     sed, awk, and sh, so people familiar with those languages should have
  72.     little difficulty with it.  (Language historians will also note some
  73.     vestiges of csh, Pascal, and even BASIC-PLUS.)  Expression syntax
  74.     corresponds quite closely to C expression syntax.  Unlike most Unix
  75.     utilities, Perl does not arbitrarily limit the size of your data--if
  76.     you've got the memory, Perl can slurp in your whole file as a single
  77.     string.  Recursion is of unlimited depth.  And the hash tables used by
  78.     associative arrays grow as necessary to prevent degraded performance.
  79.     Perl uses sophisticated pattern matching techniques to scan large amounts
  80.     of data very quickly.  Although optimized for scanning text, Perl can also
  81.     deal with binary data, and can make dbm files look like associative arrays
  82.     (where dbm is available).  Setuid Perl scripts are safer than C programs
  83.     through a dataflow tracing mechanism which prevents many stupid security
  84.     holes.  If you have a problem that would ordinarily use sed or awk or sh,
  85.     but it exceeds their capabilities or must run a little faster, and you
  86.     don't want to write the silly thing in C, then Perl may be for you.  There
  87.     are also translators to turn your sed and awk scripts into Perl scripts.
  88.  
  89.  
  90. 1.2) Is Perl hard to learn?
  91.     
  92.     No, Perl is easy to learn for two reasons.  
  93.    
  94.     The first reason is that most of Perl is derived from existing tools
  95.     and languages, ones that many people who turn to Perl already have
  96.     some familiarity with.  These include the C programming language, the
  97.     UNIX C library, the UNIX shell, sed, and awk.  If you already know
  98.     these somewhat, Perl should be very easy for you.
  99.  
  100.     The second reason that Perl is easy to learn is that you don't have to
  101.     know every thing there is to know about it in order to get good use
  102.     out of it.  In fact, just a very small subset, mostly borrowed from C,
  103.     the shell, and sed, will be enough for most tasks.  As you feel the
  104.     need or desire to use more sophisticated features (such as C
  105.     structures or networking), you can learn these as you go.  The
  106.     learning curve for Perl is not a steep one, especially if you have
  107.     the headstart of having a background in UNIX.  Rather, its learning
  108.     curve is gentle and gradual, but it *is* admittedly rather long.
  109.  
  110.     If you don't know C or UNIX at all, it'll be a steeper learning curve,
  111.     but what you then learn from Perl will carry over into other areas,
  112.     like using the C library, UNIX system call, regular expressions, and
  113.     associative arrays, just to name a few.  To know Perl is to know 
  114.     UNIX, and vice versa.
  115.  
  116.  
  117. 1.3) Should I program everything in Perl?
  118.  
  119.     Of course not.  You should choose the appropriate tool for the task at
  120.     hand.  While it's true that the answer to the question "Can I do (some
  121.     arbitrary task) in Perl?" is almost always "yes", that doesn't mean
  122.     this is necessarily a good thing to do.  For many people, Perl serves
  123.     as a great replacement for shell programming.  For a few people, it
  124.     also serves as a replacement for most of what they'd do in C.  But
  125.     for some things, Perl just isn't the optimal choice, such as tasks
  126.     requiring very complex data structures.
  127.  
  128.  
  129. 1.4) Where can I get Perl over the Internet?
  130.  
  131.     From any comp.sources.misc archive.   Initial sources  were posted to
  132.     Volume 18, Issues 19-54 at patchlevel 3.  The Patches 4-10 were posted
  133.     to Volume 20, Issues 56-62.  You can use the archie server
  134.     (see the alt.sources FAQ in news.answers) for ways to find these.
  135.  
  136.     These machines, at the very least, definitely have it available for
  137.     anonymous FTP:
  138.  
  139.     ftp.uu.net                137.39.1.2
  140.     archive.cis.ohio-state.edu      128.146.8.52
  141.     jpl-devvax.jpl.nasa.gov         128.149.1.143
  142.     ftp.netlabs.com         192.94.48.152
  143.     prep.ai.mit.edu            18.71.0.38
  144.     ftp.cs.ruu.nl            131.211.80.17  (Europe)
  145.  
  146.  
  147.  
  148.  
  149. 1.5) Where can I get Perl via Email?
  150.  
  151.     If you are in Europe, you might using the following site.  (I'm still
  152.     looking for a domestic site.) This information thanks to "Henk P.
  153.     Penning" <henkp@cs.ruu.nl>:  One automated fashion is as follows:
  154.  
  155.     Email: Send a message to 'mail-server@cs.ruu.nl' containing:
  156.      begin
  157.      path your_email_address
  158.      send help
  159.      send PERL/INDEX
  160.      end
  161.     The path-line may be omitted if your message contains a normal From:-line.
  162.     You will receive a help-file and an index of the directory that contains
  163.     the Perl stuff.
  164.  
  165.     If all else fails, mail to Larry usually suffices.
  166.  
  167.  
  168. 1.6) How can I get Perl via UUCP?
  169.  
  170.     You can get it from the site osu-cis; here is the appropriate info,
  171.     thanks to J Greely <jgreely@cis.ohio-state.edu> or <osu-cis!jgreely>.
  172.  
  173.     E-mail contact:
  174.         osu-cis!uucp
  175.     Get these two files first:
  176.         osu-cis!~/GNU.how-to-get.
  177.         osu-cis!~/ls-lR.Z
  178.     Current Perl distribution:
  179.         osu-cis!~/perl/4.0/kits@10/perl.kitXX.Z (XX=01-37)
  180.     How to reach osu-cis via uucp(L.sys/Systems file lines):
  181.     #
  182.     # Direct Trailblazer
  183.     #
  184.     osu-cis Any ACU 19200 1-614-292-5112 in:--in:--in: Uanon
  185.     #
  186.     # Direct V.32 (MNP 4)
  187.     # dead, dead, dead...sigh.
  188.     #
  189.     #osu-cis Any ACU 9600 1-614-292-1153 in:--in:--in: Uanon
  190.     #
  191.     # Micom port selector, at 1200, 2400, or 9600 bps.
  192.     # Replace ##'s below with 12, 24, or 96 (both speed and phone number).
  193.     #
  194.     osu-cis Any ACU ##00 1-614-292-31## "" \r\c Name? osu-cis nected \c GO \d\r\d\r\d\r in:--in:--in:
  195.      Uanon
  196.  
  197.     Modify as appropriate for your site, of course, to deal with your
  198.     local telephone system.  There are no limitations concerning the hours
  199.     of the day you may call.
  200.  
  201.     Another possibility is to use UUNET, although they charge you
  202.     for it.  You have been duly warned.  Here's the advert:
  203.  
  204.            Anonymous Access to UUNET's Source Archives
  205.  
  206.                  1-900-GOT-SRCS
  207.  
  208.      UUNET now provides access to its extensive collection of UNIX
  209.     related sources to non- subscribers.  By  calling  1-900-468-7727
  210.     and  using the login "uucp" with no password, anyone may uucp any
  211.     of UUNET's on line source collection.  Callers will be charged 40
  212.     cents  per  minute.   The charges will appear on their next tele-
  213.     phone bill.
  214.  
  215.      The  file  uunet!/info/help  contains  instructions.   The  file
  216.     uunet!/index//ls-lR.Z contains a complete list of the files available
  217.     and is updated daily.  Files ending in Z need to be uncompressed
  218.     before being used.   The file uunet!~/compress.tar is a tar
  219.     archive containing the C sources for the uncompress program.
  220.  
  221.      This service provides a  cost  effective  way  of  obtaining
  222.     current  releases  of sources without having to maintain accounts
  223.     with UUNET or some other service.  All modems  connected  to  the
  224.     900  number  are  Telebit T2500 modems.  These modems support all
  225.     standard modem speeds including PEP, V.32 (9600), V.22bis (2400),
  226.     Bell  212a  (1200), and Bell 103 (300).  Using PEP or V.32, a 1.5
  227.     megabyte file such as the GNU C compiler would cost $10  in  con-
  228.     nect  charges.   The  entire  55  megabyte X Window system V11 R4
  229.     would cost only $370 in connect time.  These costs are less  than
  230.     the  official  tape  distribution fees and they are available now
  231.     via modem.
  232.  
  233.               UUNET Communications Services
  234.            3110 Fairview Park Drive, Suite 570
  235.              Falls Church, VA 22042
  236.              +1 703 876 5050 (voice)
  237.               +1 703 876 5059 (fax)
  238.                 info@uunet.uu.net
  239.  
  240.  
  241.  
  242. 1.7) Where can I get more information on Perl?
  243.  
  244.     We'll cover five areas here: USENET (where you're probably reading
  245.     this), publications, the reference guide, examples on the Internet,
  246.     and Perl instructional courses.
  247.  
  248.     A.  USENET
  249.  
  250.     You should definitely read the USENET comp.lang.perl newsgroup or
  251.     mailing list for all sorts of discussions regarding the language,
  252.     bugs, features, history, humor, and trivia.  In this respect, it
  253.     functions both as a comp.lang.* style newsgroup and also as a user
  254.     group for the language; in fact, there's a mailing list called
  255.     ``perl-users'' that is bidirectionally gatewayed to the newsgroup; see
  256.     question #38 for details.  Larry Wall is a very frequent poster here,
  257.     as well as many (if not most) of the other seasoned Perl programmers.
  258.     It's the best place for the very latest information on Perl.
  259.  
  260.     B.  PUBLICATIONS
  261.  
  262.     If you've been dismayed by the ~80-page troffed Perl man page (or is
  263.     that man treatise?) you should look to ``the Camel Book'', written by
  264.     Larry and Randal L. Schwartz <merlyn@ora.com>, published as a Nutshell
  265.     Handbook by O'Reilly & Associates and entitled _Programming Perl_.
  266.     Besides serving as a reference guide for Perl, it also contains
  267.     tutorial material and is a great source of examples and cookbook
  268.     procedures, as well as wit and wisdom, tricks and traps, pranks and
  269.     pitfalls.  The code examples contained therein are available via
  270.     anonymous FTP from ftp.uu.net in
  271.     /published/oreilly/nutshell/perl/perl.tar.Z for your retrieval.
  272.     Corrections and additions to the book can be found in the Perl man
  273.     page right before the BUGS section under the heading ERRATA AND
  274.     ADDENDA.
  275.  
  276.     If you can't find the book in your local technical bookstore, the book
  277.     may be ordered directly from O'Reilly by calling 1-800-998-9938 if in
  278.     North America and 1-707-829-0515.  The book's ISBN is 0-937175-64-1.
  279.    
  280.     Autographed copies are *NO LONGER* available from TECHbooks --
  281.     you'll have to nab the authors in person if you want one.  Larry
  282.     routinely carries around a camel stamp for just such an occasion.
  283.  
  284.     Reasonably substantiated rumor has it that there will be another Perl
  285.     book out pretty soon, this one aimed more at beginners.  Look for it
  286.     from ORA towards the beginning of 93.
  287.  
  288.     Larry Wall has published a 3-part article on perl in Unix World
  289.     (August through October of 1991), and Rob Kolstad also had a 3-parter
  290.     in Unix Review (May through July of 1990).  Tom Christiansen also has
  291.     a brief overview article in the trade newsletter Unix Technology
  292.     Advisor from November of 1989.  You might also investigate "The Wisdom
  293.     of Perl" by Gordon Galligher from SunExpert magazine;  April 1991
  294.     Volume 2 Number 4.  The newest (Dec 92) Computer Language magazine
  295.     is also alleged to contain a cover article on Perl.
  296.  
  297.     The USENIX LISA (Large Installations Systems Administration) Conference
  298.     have for several years now included many papers of tools written in
  299.     Perl.  Old proceedings of these conferences are available; look in
  300.     your current issue of ";login:" or send mail to office@usenix.org 
  301.     for further information.
  302.  
  303.     C.  INTERNET
  304.  
  305.     For other examples of Perl scripts, look in the Perl source directory in
  306.     the eg subdirectory.  You can also find a good deal of them on 
  307.     archive.cis.ohio-state.edu in the pub/perl/scripts/ subdirectory.
  308.  
  309.     Another source for examples, currently only for anonymous FTP, is on
  310.     convex.com [130.168.1.1].  This contains, amongst other things,
  311.     a copy of the newsgroup up through Aug 91, a text retrieval database
  312.     for the newsgroup, a rather old and short troff version of Tom Christiansen's
  313.     perl tutorial (this was the version presented at Washington DC USENIX),
  314.     and quite a few of Tom's scripts.  You can look at the INDEX file
  315.     in /pub/perl/INDEX for a list of what's in that directory.   
  316.  
  317.     The Convex and Ohio State archives are mirrored on uunet
  318.     in /languages/perl/scripts-{convex,osu}.
  319.  
  320.     D.  REFERENCE GUIDE
  321.  
  322.     A nice reference guide by Johan Vromans <jv@mh.nl> is also available;
  323.     It is distributed in LaTeX (source) and PostScript (ready to
  324.     print) forms. Obsolete versions may still be available in TeX and troff
  325.     forms, although these don't print as nicely. The official kit
  326.     includes both LaTeX and PostScript forms, and can be FTP'd from
  327.     ftp.cs.ruu.nl [131.211.80.17], file /pub/DOC/perlref-4.035.tar.Z.
  328.     The reference guide comes with the O'Reilly book in a nice, glossy
  329.     card format.
  330.  
  331.     E.  PERL COURSES
  332.  
  333.     Various technical conferences, including USENIX, SUG, WCSAS, AUUG,
  334.     FedUnix, and Europen have been sponsoring tutorials of varying lengths
  335.     on Perl at their system administration and general conferences.  You
  336.     might consider attending one of these.  These classes are typically
  337.     taught by Tom Christiansen <tchrist@usenix.com>, although both Rob
  338.     Kolstad <kolstad@usenix.org> and Randal Schwartz <merlyn@ora.com> also
  339.     teach Perl on occasion.  Special appearances by Tom, Rob, and/or
  340.     Randal may also be negotiated.  Classes can run from one day up to a
  341.     week ranging over a wide range of subject matter (most are two or
  342.     three days), and can include lab time if you want; having lab time
  343.     with exercises is generally of great benefit.  Send us mail if your
  344.     organization is interested in having a Perl class taught at your site.
  345.  
  346.  
  347. 1.8) Can people who aren't on USENET receive comp.lang.perl as a digest?
  348.  
  349.     "Perl-Users" is the mailing list version of the comp.lang.perl
  350.     newsgroup.  If you're not lucky enough to be on USENET you can post to
  351.     comp.lang.perl by sending to one of the following addresses.  Which one
  352.     will work best for you depends on which nets your site is hooked into.
  353.     Ask your local network guru if you're not certain.
  354.  
  355.     Internet: PERL-USERS@VIRGINIA.EDU
  356.               Perl-Users@UVAARPA.VIRGINIA.EDU
  357.  
  358.     BitNet: Perl@Virginia
  359.  
  360.     uucp: ...!uunet!virginia!perl-users
  361.  
  362.     The Perl-Users list is bidirectionally gatewayed with the USENET
  363.     newsgroup comp.lang.perl.  This means that VIRGINIA functions as a
  364.     reflector.  All traffic coming in from the non-USENET side is
  365.     immediately posted to the newsgroup.  Postings from the USENET side are
  366.     periodically digested and mailed out to the Perl-Users mailing list.  A
  367.     digest is created and distributed at least once per day, more often if
  368.     traffic warrants.
  369.  
  370.     All requests to be added to or deleted from this list, problems,
  371.     questions, etc., should be sent to:
  372.  
  373.     Internet: Perl-Users-Request@Virginia.EDU
  374.               Perl-Users-Request@uvaarpa.Virginia.EDU
  375.  
  376.     BitNet: Perl-Req@Virginia
  377.  
  378.     uucp: ...!uunet!virginia!perl-users-request
  379.  
  380.     Coordinator: Marc Rouleau <mer6g@VIRGINIA.EDU>
  381.  
  382. 1.9) Are archives of comp.lang.perl available?
  383.  
  384.     Yes, although they're poorly organized.  You can get them from
  385.     the host ftp.cs.caltech.edu (131.215.128.204) in the directory  
  386.     /pub/comp.lang.perl.  The file is comp.lang.perl.tar.Z; this file
  387.     was last modified on February 15, 1992, and is 8.9 megabytes long.
  388.  
  389.     These are currently stored in news- or MH-style format; there are
  390.     subdirectories named things like "arrays", "programs", "taint", and
  391.     "emacs".  Unfortunately, only the first ~1600 or so messages have been
  392.     so categorized, and we're now up to almost 15000.  Furthermore, even
  393.     this categorization was haphazardly done and contains errors.  
  394.  
  395.     A more sophisticated query and retrieval mechanism is desirable.
  396.     Preferably one that allows you to retrieve article using a fast-access
  397.     indices, keyed on at least author, date, subject, thread (as in "trn")
  398.     and probably keywords.  Right now, the MH pick command works for this,
  399.     but it is very slow to select on 15000 articles.
  400.  
  401.     If you're serious about this, your best bet is probably to retrieve
  402.     the compressed tarchive and play with what you get.  Any suggestions
  403.     how to better sort this all out are extremely welcome.
  404.  
  405.     Currently the comp.lang.perl archives on convex.com are nearly a year
  406.     behind.  That's because I no longer have room to store them there.  I
  407.     do have them all on-line still, but they are not publicly accessible.
  408.     If you have a special request for a query on the old newsgroup
  409.     postings, and make nice noises in my direction, I can run the query
  410.     and send them to you.  Algebraic queries are like "find me anything
  411.     about this and that and the other thing but not this or whozits".  I
  412.     hope to put this in the form of a mailserver.  Donated software would
  413.     be fine. :-)
  414.  
  415.     The fast text-retrieval query system for this I'm currently using is
  416.     Liam Quin's excellent lqtext system, available from ftp.cs.toronto.edu
  417.     in /pub/lq-text* .
  418.  
  419.     Rumor has it that there are WAIS servers out there for comp.lang.perl
  420.     these days, but I haven't used them.  Any information on these would
  421.     be appreciated.
  422.  
  423.  
  424. 1.10) How do I get Perl to run on machine FOO?
  425.  
  426.     Perl comes with an elaborate auto-configuration script that allows Perl
  427.     to be painlessly ported to a wide variety of platforms, including many
  428.     non-UNIX ones.  Amiga and MS-DOS binaries are available on
  429.     jpl-devvax.jpl.nasa.gov [128.149.1.143] for anonymous FTP.  Try to bring
  430.     Perl up on your machine, and if you have problems, examine the README
  431.     file carefully, and if all else fails, post to comp.lang.perl;
  432.     probably someone out there has run into your problem and will be able
  433.     to help you.
  434.  
  435.     In particular, since they're so often asked about, here's some information 
  436.     for the MacIntosh from Matthias Ulrich Neeracher <neeri@iis.ethz.ch>:
  437.  
  438.     A port of Perl to the Apple Macintosh is available by anonymous
  439.     ftp to wuarchive.wustl.edu [128.252.135.4] from the file
  440.     /mirrors2/rascal.ics.utexas.edu/programming/Perl_402_MPW_CPT_bin .
  441.  
  442.     You can also get it from Host gatekeeper.dec.com [16.1.0.2]
  443.     in /.9/plan/perl/macperl/Perl_402_MPW_CPT_bin .
  444.  
  445.     The file is 1.1M and must be transferred in BINARY mode. Please
  446.     be considerate of the archive sites' users during CDT working hours.
  447.     (And, no, there is no way to get it by email).
  448.  
  449.     For European users, the file should soon appear on lth.se.
  450.  
  451.     To make optimal use of all the features of this port, you
  452.     should have MPW, ToolServer, and 5M of memory. There is also a
  453.     standalone version included, but it's currently of very limited
  454.     usefulness.
  455.  
  456.     This package contains all of the sources for compilation with
  457.     MPW C 3.2
  458.  
  459.     Here's more, from Timothy Murphy <tim@maths.tcd.ie >
  460.  
  461.  
  462.     I ported perl to the Mac, using Think C, a while ago.  I've
  463.     used it quite a lot since without problems.
  464.  
  465.     It is available from ftp.maths.tcd.ie in pub/Mac/perl.hqx .
  466.     The source (as diffs from the standard source) is in the
  467.     subdirectory pub/Mac/perl-4.035 .
  468.  
  469.     A Mac version of patch is also available in pub/Mac/patch.hqx
  470.     with source in pub/Mac/patch-2.0 .  Various other Mac ports of
  471.     GNU programs can be found in the same place.
  472.  
  473.     They all use a small "ThinkCPosix" library containing various
  474.     Unix-like functions, which again can be found in the same
  475.     place.
  476.  
  477.     And here's some VMS information from Rao V. Akella 
  478.     <rao@moose.cccs.umn.edu>:  (this appears to be an old port)
  479.  
  480.     You can pick up Perl for VMS (version 3.0.1.1 patchlevel 4) via
  481.     anonymous ftp from ftp.pitt.edu [130.49.253.1] in the
  482.     software/vms/perl subdirectory (there are two files there:
  483.     perl-pl18.bck and perl-pl4.bck).
  484.  
  485.     There is also a v3.018 on info.rz.uni-ulm.de [134.60.1.125] or
  486.     vms.huji.ac.il [128.139.4.3] in /pub/VMS/misc (information courtesy 
  487.     of Anders Rolff <rolff@scotty.eurokom.ie>).
  488.  
  489.     And here is a recent version for MS-DOS from Budi Rahard 
  490.     <rahard@ee.UManitoba.CA>, who says:
  491.  
  492.     I am collecting MS-DOS Perl(s) in ftp.ee.umanitoba.ca directory
  493.     /pub/msdos/perl.  Currently I received three versions of Perl v4.019
  494.     and one of 4.010.  (Tommy Thorn <tthorn@daimi.aau.dk> and Len Reed
  495.     <holos0!lbr@gatech.edu>)  
  496.  
  497.     There is now a 4.035 for 386 [DOS], Hitoshi Doi <doi@jrd.december.com>
  498.     port, is available ftp.ee.umanitoba.ca as /pub/msdos/perl/perl386.zoo .
  499.  
  500.     Please contact the porters directly in case of questions about
  501.     these ports.
  502.  
  503.  
  504. 1.11) Where can I get (info|inter|ora|sql|syb)perl?
  505.  
  506.     Numerous database-oriented extensions to Perl have been written.
  507.     These amount to using the usub mechanism (see the usub/ subdirectory
  508.     in the distribution tree) to link in a database library, allowing
  509.     embedded calls to Informix, Interbase, Oracle, Ingres, and Sybase.
  510.     There is currently a project underway, organized by Buzz Moschetti
  511.     <buzz@bear.com>, to create a higher level interface (DBperl) that
  512.     will allow you to write your queries in a database-independent
  513.     fashion.  If you're interested, send mail to
  514.     <perldb-interest-request@vix.com> about it.
  515.    
  516.     Meanwhile, here are the authors of the various extensions:
  517.  
  518.     What            Target DB       Who
  519.     --------        -----------     ----------------------------------------
  520.     Infoperl        Informix        Kurt Andersen (kurt@hpsdid.sdd.hp.com)
  521.     Interperl       Interbase       Buzz Moschetti (buzz@bear.com)
  522.     Oraperl         Oracle          Kevin Stock (kstock@encore.com)
  523.     Sqlperl         Ingres          Ted Lemon (mellon@ncd.com)
  524.     Sybperl         Sybase          Michael Peppler (mpeppler@itf.ch)
  525.  
  526.  
  527. 1.12) There's an a2p and an s2p; why isn't there a p2c (perl-to-C)?
  528.  
  529.     Because the Pascal people would be upset that we stole their name. :-)
  530.  
  531.     The dynamic nature of Perl's do and eval operators (and remember that
  532.     constructs like s/$mac_donald/$mac_gregor/eieio count as an eval) would
  533.     make this very difficult.  To fully support them, you would have to put
  534.     the whole Perl interpreter into each compiled version for those scripts
  535.     using them.  This is what undump does right now, if your machine has it.
  536.     If what you're doing will be faster in C than in Perl, maybe it should
  537.     have been written in C in the first place.  For things that ought to be
  538.     written in Perl, the interpreter will be just about as fast, because the
  539.     pattern matching routines won't work any faster linked into a C program.
  540.     Even in the case of simple Perl programs that don't do any fancy evals, the
  541.     major gain would be in compiling the control flow tests, with the rest
  542.     still being a maze of twisty, turny subroutine calls.  Since these are not
  543.     usually the major bottleneck in the program, there's not as much to be
  544.     gained via compilation as one might think.
  545.  
  546.  
  547. 1.13) Where can I get undump for my machine?
  548.  
  549.     The undump program comes from the TeX distribution.  If you have TeX, then
  550.     you may have a working undump.  If you don't, and you can't get one,
  551.     *AND* you have a GNU emacs working on your machine that can clone itself,
  552.     then you might try taking its unexec() function and compiling Perl with
  553.     -DUNEXEC, which will make Perl call unexec() instead of abort().  You'll
  554.     have to add unexec.o to the objects line in the Makefile.  If you succeed,
  555.     post to comp.lang.perl about your experience so others can benefit from it.
  556.  
  557.  
  558. 1.14) Where can I get a perl-mode for emacs?
  559.  
  560.     In the perl4.0 source directory, you'll find a directory called
  561.     "emacs", which contains several files that should help you.
  562.  
  563.  
  564. 1.15) How can I use Perl interactively?
  565.     
  566.     The easiest way to do this is to run Perl under its debugger.
  567.     If you have no program to debug, you can invoke the debugger
  568.     on an `empty' program like this:
  569.  
  570.         perl -de 0
  571.  
  572.     (The more positive amongst us prefer "perl -de 1". :-)
  573.  
  574.     Now you can type in any legal Perl code, and it will be immediately
  575.     evaluated.  You can also examine the symbol table, get stack
  576.     backtraces, check variable Values, and if you want to, set 
  577.     breakpoints and do the other things you can do in a symbolic debugger.
  578.  
  579.  
  580. 1.16) Is there a Perl shell? 
  581.     
  582.    Not really.  Perl is a programming language, not a command
  583.    interpreter.  There is a very simple one called "perlsh"
  584.    included in the Perl source distribution.  It just does this:
  585.  
  586.     $/ = '';        # set paragraph mode
  587.     $SHlinesep = "\n";
  588.     while ($SHcmd = <>) {
  589.         $/ = $SHlinesep;
  590.         eval $SHcmd; print $@ || "\n";
  591.         $SHlinesep = $/; $/ = '';
  592.     }
  593.  
  594.    Not very interesting, eh?  
  595.  
  596.    Daniel Smith <dansmith@autodesk.com> is working on an interactive Perl
  597.    shell called SoftList.  It's currently at version 3.0beta.  SoftList
  598.    3.0 has tcsh-like command line editing, can let you define a file of
  599.    aliases so that you can run chunks of perl or UNIX commands, and so
  600.    on.  You can send mail to him for further information and availability.
  601.  
  602.  
  603. 1.17) Is there a Perl profiler?
  604.  
  605.     While there isn't one included with the perl source distribution,
  606.     various folks have written packages that allow you to do at least some
  607.     sort of profiling.  The strategy usually includes modifying the perl
  608.     debugger to handle profiling.  Authors of these packages include
  609.  
  610.     Wayne Thompson         <me@anywhere.EBay.Sun.COM>
  611.     Ray Lischner         <lisch@sysserver1.mentor.com>
  612.     Kresten Krab Thorup     <krab@iesd.auc.dk>  
  613.  
  614.     The original articles by these folks containing their
  615.     profilers are available on convex.com in 
  616.     /pub/perl/information/profiling.shar via anon ftp.
  617.  
  618.  
  619. 1.18) Is there a yacc for Perl?
  620.  
  621.     Yes!! It's a version of Berkeley yacc that outputs Perl code instead
  622.     of C code!  You can get this from ftp.sterling.com [192.124.9.1] in
  623.     /local/perl-byacc1.8.1.tar.Z, or send the author mail for details.
  624.  
  625.  
  626. 1.19) How can I use curses with perl?
  627.  
  628.     One way is to build a curseperl binary by linking in your C curses
  629.     library as described in the usub subdirectory of the perl sources.
  630.     This requires a modicum of work, but it will be reasonably fast
  631.     since it's all in C (assuming you consider curses reasonably fast. :-)  
  632.     Programs written using this method require the modified curseperl,
  633.     not vanilla perl, to run.  While this is something of a disadvantage,
  634.     experience indicates that it's better to use curseperl than to 
  635.     try to roll your own using termcap directly.
  636.  
  637.     Another possibility is to use Henk Penning's cterm package, a curses
  638.     emulation library written in perl.  cterm is actually a separate
  639.     program with which you communicate via a pipe.  It is available from
  640.     ftp.cs.ruu.nl [131.211.80.17] via anonymous ftp. in the directory
  641.     pub/PERL.  You may also acquire the package via email in compressed,
  642.     uuencoded form by sending a message to mail-server@cs.ruu.nl
  643.     containing these lines:
  644.  
  645.     begin
  646.     send PERL/cterm.shar.Z
  647.     end
  648.  
  649.     See the question on retrieving perl via mail for more information on
  650.     how to get retrieve other items of interest from the mail server
  651.     there.
  652.  
  653.  
  654. 1.20) How can I use X with Perl?
  655.  
  656.     Right now, you have several choices.  You can wait for perl5, use
  657.     the WAFE or STDWIN packages, or try to make your own usub bindings. 
  658.  
  659.     Perl5 is anticipated to be released with bindings for X, called 
  660.     guiperl.  An exciting prototype for this, written by Jon Biggar
  661.     <jon@netlabs.com>, Larry's *other* brother-in-law and officemate, 
  662.     is already up and running inside of Netlabs.  This program addresses
  663.     the same dynamic gui-building problem space as does tcl/tk.
  664.     
  665.     If you can't wait or don't think that guiperl will do what you want,
  666.     a stab at Motif bindings was begun by Theodore C. Law
  667.     <TEDLAW@TOROLAB6.VNET.IBM.COM> area.  His article about this is 
  668.     on convex.com in /pub/perl/info/motif for anon ftp.
  669.  
  670.     STDWIN is a library written by Guido van Rossum <guido@cwi.nl>
  671.     (author of the Python programming language) that is portable 
  672.     between Mac, Dos and X11.  One could write a Perl agent to
  673.     speak to this STDWIN server.
  674.  
  675.     WAFE is a package that implements a symbolic interface to the Athena
  676.     widgets (X11R5). A typical Wafe application consists in our framework
  677.     of two parts: the front-end (we call it Wafe for Widget[Athena]front
  678.     end) and an application program running typically as separate process.
  679.     The application program can be implemented in an arbitrary programming
  680.     language and talks to the front-end via stdio.  Since Wafe (the
  681.     front-end) was developed using the extensible TCL shell (cite John
  682.     Ousterhout), an application program can dynamically submit requests to
  683.     the front-end to build up the graphical user interface; the
  684.     application can even down-load application specific procedures into
  685.     the front-end.  The distribution contains sample application programs
  686.     in Perl, GAWK, Prolog, TCL, and C talking to the same Wafe binary.
  687.     Many of the demo applications are implemented in Perl.  Wafe 0.9 can
  688.     be obtained via anonymous ftp from 
  689.     ftp.wu-wien.ac.at:pub/src/X11/wafe-0.9.tar.Z
  690.     (for people without name server: the ip address is 137.208.3.5)
  691.  
  692.  
  693. 1.21) What is perl4?  What is perl5?
  694.  
  695.     The answer to what is perl4 is nearly anything you might otherwise 
  696.     program in shell or C.  The answer to what is perl5 is basically
  697.     Perl: the Next Generation.  In fact, it's essentially a complete
  698.     rewrite of perl from the bottom up, and back again.
  699.  
  700.     Larry gave a talk on perl5 at a Bay LISA meeting as well as at the
  701.     most recent USENIX LISA conference in Long Beach in which he timorously
  702.     admitted that perl5 might possibly be beta released in early 1993.
  703.     He enumerated some of the following features.  Note that not only have
  704.     not all these been implemented yet, the ones further down the list
  705.     might well not get done at all.
  706.  
  707.     a faster, tighter, more flexible interpreter
  708.     very easy GUI Perl applications using X bindings ("guiperl")
  709.     embeddable Perl code in C code: cc prog.c -lperl 
  710.     multiple coresident perl interpreters:
  711.         perhaps threading and/or coroutines
  712.     named argument passing:
  713.         some_func( OC => $red, TOF => "\f");
  714.     recursive lists:
  715.         [a, b, [c, d], e] has 4 elts, the 3rd being itself a list
  716.     typed pointers and generalized indirection:
  717.         like @{$aptr} or &{$fptr} or &{ $table[$index] . "func" }().
  718.     merging of list operator and function calling syntax:
  719.         split /pat/, $string;
  720.     subroutines without &'s:   myfunc($arg);
  721.     generalization of dbm binding for assoc arrays to handle
  722.         any generic fetch/store/open/close/flush package.
  723.         (thus allowing both dbm and gdbm at once)
  724.     object oriented programming:
  725.         STDOUT->flush(1);
  726.         give dog $bone;
  727.     lexical scoping
  728.     dynamic loading of C libraries for systems that can
  729.     byte-compiled code for speed and maybe security
  730.  
  731.     It's tempting to want this stuff soon, since the sooner it comes
  732.     out the sooner we can all build really cool applications.  But the
  733.     longer Larry works on it, the more items from this list will actually
  734.     get done, and the more robust the release will be.  So let's not
  735.     ask him about it too often.
  736.  
  737.  
  738. 1.22) How does Perl compare with languages like REXX or TCL?
  739.  
  740.     REXX is an interpreted programming language first seen on IBM systems,
  741.     and TCL is John Ousterhout's embeddable command language.  TCL's most
  742.     intriguing feature for many people is the tcl/tk toolset that allows
  743.     for interpreted X-based tools.
  744.  
  745.     To avoid any flamage, if you really want to know the answer to this
  746.     question, probably the best thing to do is try to write equivalent
  747.     code to do a set of tasks.  All three have their own newsgroups in
  748.     which you can learn about (but hopefully not argue about) these
  749.     languages.
  750.  
  751.     To find out more about these or other languages, you might also check
  752.     out David Muir Sharnoff <muir@tfs.com>'s posting on "Catalog of
  753.     compilers, interpreters, and other language tools" which he posts to
  754.     comp.lang.misc, comp.sources.d, comp.archives.admin, and the
  755.     news.answers newsgroups.  It's a comprehensive treatment of many
  756.     different languages.  (Caveat lector: he considers Perl's syntax
  757.     "unappealing".)   This list is archived on convex.com in 
  758.     /pub/perl/info/lang-survey.shar .
  759.  
  760.  
  761. 1.23) Is it a Perl program or a Perl script?
  762.  
  763.     Certainly. :-)
  764.  
  765.     Current UNIX parlance holds that anything interpreted
  766.     is a script, and anything compiled into native machine
  767.     code is a program.  However, others hold that a program
  768.     is a program is a program: after all, one seldom discusses
  769.     scripts written in BASIC or LISP.  Larry considers it
  770.     a program if it's set in stone and you can't change it,
  771.     whereas if you go in and hack on it, then it's a script.
  772.  
  773.     But doesn't really matter.  The terms are generally 
  774.     interchangeable today.
  775.  
  776.  
  777. 1.24) What's the difference between "Perl" and "perl"?
  778.  
  779.      32 :-)  [  ord('p') - ord('P')  ]
  780.  
  781.      Larry now uses "Perl" to signify the language proper and "perl" the
  782.      implementation of it, i.e. the current interpreter.  Hence my quip
  783.      that "Nothing but perl can parse Perl."
  784.  
  785.      On the other hand, the aesthetic value of casewise parallelism
  786.      in "awk", "sed", and "perl" as much require the lower-case 
  787.      version as "C", "Pascal", and "Perl" require the 
  788.      upper-case version.  It's also easier to type "Perl" in 
  789.      typeset print than to be constantly switching in Courier. :-)
  790.     
  791.      In other words, it doesn't matter much, especially if all
  792.      you're doing is hearing someone talk about the language;
  793.      case is hard to distingish aurally.
  794.  
  795.  
  796. 1.25) What companies use or ship Perl?
  797.  
  798.     At this time, the known list of companies that ship Perl includes at
  799.     least the following: 
  800.  
  801.     BSDI
  802.     Comdisco Systems
  803.     CONVEX Computer Corporation
  804.     Dell
  805.     Integraph
  806.     Kubota Pacific (/usr/contrib)
  807.     Netlabs
  808.  
  809.     Many other companies use Perl internally for purposes of tools
  810.     development, systems administration, installation scripts, and test
  811.     suites.  Rumor has it that the large workstation vendors (the TLA set)
  812.     are seriously looking into shipping Perl with their standard systems
  813.     "soon".
  814.  
  815.     People with support contracts with their vendors are actively 
  816.     encouraged to submit enhancement requests that Perl be shipped 
  817.     as part of their standard system.  It would, at the very least,
  818.     reduce the FTP load on the Internet. :-)
  819.  
  820.  
  821. 1.26) Is there commercial, 3rd-party support for Perl?
  822.  
  823.     No.  Although perl is included in the GNU distribution, at last check,
  824.     Cygnus does not offer support for it.  However, it's unclear whether
  825.     they've ever been offered sufficient financial incentive to do so.
  826.  
  827.     On the other hand, you do have comp.lang.perl as a totally gratis
  828.     support mechanism.  As long as you ask "interesting" questions, 
  829.     you'll probably get plenty of help. :-)
  830.  
  831. 1.27) Where can I get a list of the JAPH signature quotes?
  832.  
  833.     These are the "just another perl hacker" signatures that
  834.     some people sign their postings with.  About 100 of the 
  835.     of the earlier ones are on convex.com in /pub/perl/info/japh.
  836.  
  837. 1.28) Where can I get a list of Larry Wall witticisms?
  838.  
  839.     Over a hundred quips by Larry, from postings of his or source code,
  840.     can be found on convex.com in /pub/perl/info/lwall-quotes.  
  841.  
  842. 1.29) Is there a pretty-printer for Perl?
  843.  
  844.     That depends on what you mean.  If you want something 
  845.     that works like vgrind on Perl programs, then the answer
  846.     is "yes, nearly".  Here's a vgrind entry for perl:
  847.  
  848.     PERL|perl|Perl:\
  849.         :pb=(^\d?sub\d\p\d?|\{):\
  850.         :bb={:be=}:cb=#:ce=$:sb=":se=\e":lb=':\
  851.         :le=\e':tl:\
  852.         :id=_:\
  853.         :kw=\
  854.         if for foreach unless until while continue else elsif \
  855.         do eval require \
  856.         die exit \
  857.         defined delete reset \
  858.         goto last redo next dump \
  859.         local undef return  \
  860.         write format  \
  861.         sub package
  862.  
  863.     It doesn't actually do everything right; in particular, 
  864.     things like $#, $', s#/foo##, and $foo'bar all confuse it.
  865.  
  866.     If what you mean is whether there is a program that will
  867.     reformat the program much as indent(1) will do for C, then
  868.     the answer is no.  The complex feedback between the scanner
  869.     and the parser (as in the things that confuse vgrind) make
  870.     it challenging to write at best to write a stand-alone C parser.
  871. --
  872.     Tom Christiansen      tchrist@convex.com      convex!tchrist
  873.  
  874.     California is a fine place to live -- if you happen to be an orange.
  875.             -- Fred Allen
  876. -- 
  877.     Tom Christiansen      tchrist@convex.com      convex!tchrist
  878.  
  879.     As far as we know, our computer has never had an undetected error.
  880.             -- Weisert
  881.